All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class com.apple.alpha.app.Screen

java.lang.Object
   |
   +----com.apple.alpha.core.NativeObject
           |
           +----com.apple.alpha.app.Screen

public class Screen
extends NativeObject
This class wraps the Objective-C class NSScreen.


Constructor Index

 o Screen()
This default constructor is equivalent to Objective-C's [[NSScreen alloc] init].
 o Screen(boolean, int)
Protected constructor used by the bridge to wrap an Objective-C object.

Method Index

 o deepestScreen()
A wrapper for the + deepestScreen Objective-C class method.
 o depth()
A wrapper for the - depth Objective-C instance method.
 o deviceDescription()
A wrapper for the - deviceDescription Objective-C instance method.
 o frame()
A wrapper for the - frame Objective-C instance method.
 o mainScreen()
A wrapper for the + mainScreen Objective-C class method.
 o screens()
A wrapper for the + screens Objective-C class method.
 o visibleFrame()
A wrapper for the - visibleFrame Objective-C instance method.

Constructors

 o Screen
 protected Screen(boolean shouldAllocate,
                  int objcObject)
Protected constructor used by the bridge to wrap an Objective-C object. It should never be invoked directly.

 o Screen
 public Screen()
This default constructor is equivalent to Objective-C's [[NSScreen alloc] init].

Methods

 o screens
 public static native Array screens()
A wrapper for the + screens Objective-C class method.

 o mainScreen
 public static native Screen mainScreen()
A wrapper for the + mainScreen Objective-C class method.

 o deepestScreen
 public static native Screen deepestScreen()
A wrapper for the + deepestScreen Objective-C class method.

 o depth
 public native int depth()
A wrapper for the - depth Objective-C instance method.

 o frame
 public native Rect frame()
A wrapper for the - frame Objective-C instance method.

 o visibleFrame
 public native Rect visibleFrame()
A wrapper for the - visibleFrame Objective-C instance method.

 o deviceDescription
 public native Dictionary deviceDescription()
A wrapper for the - deviceDescription Objective-C instance method.


All Packages  Class Hierarchy  This Package  Previous  Next  Index